BenSelect Documentation
Questions and Forms - Do not show if within date range
Send Feedback
JScript Examples > JScript for Forms > Questions and Forms - Do not show if within date range

Glossary Item Box

Requirement: If today is within 30 days of the employee's date of hire, do not show.

This script in the JScript Visible will not show the questions if today is within 30 days of the employee's date of hire.  Useful for plans that do not require EOI if the employee enrolls as a new hire.
 
 

var today = DateTime.Today;

var newHire;

var hireDate = Event.Employee.DateOfHire;

var compareDate = hireDate.AddDays(30);

if (compareDate > today)

newHire = true;

else

newHire = false;

Event.Value = !newHire;

 

©2024. All Rights Reserved.